home *** CD-ROM | disk | FTP | other *** search
- on(press){
- if(_name.substr(8,1) eq "D")
- {
- tellTarget("../")
- {
- if(Number(_currentframe) == 20)
- {
- stop();
- }
- else if(Number(_currentframe) < 20)
- {
- play();
- }
- else
- {
- gotoAndPlay(41 - _currentframe);
- }
- }
- }
- if(_name.substr(8,1) eq "U")
- {
- tellTarget("../")
- {
- if(20 < Number(_currentframe))
- {
- play();
- }
- else
- {
- gotoAndPlay(41 - _currentframe);
- }
- }
- }
- }
-